home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / m4-1_0_3.lha / m4-1.0.3 / checks / Makefile.in < prev   
Makefile  |  1992-12-19  |  2KB  |  67 lines

  1. # Makefile for GNU m4 checks directory.
  2. # Copyright (C) 1992 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. SHELL = /bin/sh
  19.  
  20. #### Start of system configuration section. ####
  21.  
  22. srcdir = @srcdir@
  23. VPATH = @srcdir@
  24.  
  25. # Should be GNU awk, for the get_them script.
  26. AWK = @AWK@
  27.  
  28. #### End of system configuration section. ####
  29.  
  30. CHECKS = [0-9][0-9].*
  31. DISTFILES = Makefile.in get_them check_them $(CHECKS) .all_stamp incl.m4 foo
  32.  
  33. all: .all_stamp
  34.  
  35. .all_stamp: get_them ../m4.texinfo
  36.     rm -f $(CHECKS)
  37.     AWK=$(AWK) sh $(srcdir)/get_them `cd $(srcdir)/..; pwd`/m4.texinfo
  38.     touch .all_stamp
  39.  
  40. install:
  41.  
  42. uninstall:
  43.  
  44. check: check_them .all_stamp COPYING
  45.     sh $(srcdir)/check_them $(CHECKS)
  46.  
  47. COPYING:
  48.     cp $(srcdir)/../COPYING .
  49.  
  50. tags:
  51.  
  52. clean:
  53.     rm -f COPYING
  54.  
  55. distclean: clean
  56.     rm -f Makefile
  57.  
  58. realclean: distclean
  59.     rm -f $(CHECKS) .all_stamp
  60.  
  61. dist: $(DISTFILES)
  62.     mkdir ../`cat ../.fname`/checks
  63.     ln $(DISTFILES) ../`cat ../.fname`/checks
  64.  
  65. Makefile: Makefile.in
  66.     cd ..; ./config.status
  67.